home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / mysql_start.bat < prev    next >
DOS Batch File  |  2005-08-18  |  468b  |  20 lines

  1. @echo off
  2. echo Diese Eingabeforderung nicht waehrend des Running beenden
  3. echo Please dont close Window while MySQL is running
  4. echo MySQL is trying to start
  5. echo Please wait  ...
  6. echo MySQL is starting with mysql\bin\my.cnf (console)
  7.  
  8. mysql\bin\mysqld --defaults-file=mysql\bin\my.cnf --standalone --console
  9.  
  10. if errorlevel 1 goto error
  11. goto finish
  12.  
  13. :error
  14. echo.
  15. echo MySQL konnte nicht gestartet werden
  16. echo MySQL could not be started
  17. pause
  18.  
  19. :finish
  20.